// Cahier d'erreurs du cours. import { ErrorsApp } from "@/components/learning/errors-app"; export const metadata = { title: "Cahier d'erreurs" }; export default async function ErreursPage({ params }: { params: Promise<{ course: string }> }) { const { course } = await params; return ; }